home *** CD-ROM | disk | FTP | other *** search
/ Grand Slam 3 / Grand Slam 3.iso / 004 / bre0979.arj / BREDATA.EXE / DOCS / STRUCT.INF < prev   
Text File  |  1995-07-14  |  2KB  |  57 lines

  1. {Barren Realms Elite v0.970 Public Pascal Structure Files
  2.  --------------------------------------------------------
  3.  
  4.  Note: For security purposes (to prevent cheating), only unimportant data
  5.        file structures are released.  Tampering with these files will not
  6.        aid a BBS, as they do not affect the game except by providing
  7.        information.
  8. }
  9.  
  10. {FILE: DATA\SPY.BR
  11.  --------------------------------------------------------------------------
  12.  This file stores 255 "SpyList"s.  It contains all the known spy
  13.  information available in the Spy Database.
  14. }
  15.  
  16. Type
  17.   SpyInfo = Record
  18.     Id,
  19.     Troopers,
  20.     Jets,
  21.     MissileBases,
  22.     Tanks,
  23.     Regions : LongInt;
  24.     Morale : Integer;
  25.     Date : Real;
  26.   End;
  27.  
  28.   SpyList = Array['A'..'Y'] Of SpyInfo;
  29. {-------------------------------------------------------------------------}
  30.  
  31. {FILE: DATA\PLANET.BR
  32.  --------------------------------------------------------------------------
  33.  This file stores all the known recon information from each BBS in the
  34.  game stored as 255 "PlanetInfo"s.
  35. }
  36.  
  37. DateRecord = record
  38.   Year, Month, Day,
  39.   Hour, Minute, Second, Hundredths : Word;
  40. End;
  41.  
  42. PlanetInfo = Record
  43.   PlanNum : Integer;
  44.   Names : Array['A'..'Y'] Of String[30];
  45.   Scores : Array['A'..'Y'] Of LongInt;
  46.   Regions : Array['A'..'Y'] Of LongInt;
  47.   NetWorth : Array['A'..'Y'] Of LongInt;
  48.   Ids : Array['A'..'Y'] Of LongInt;
  49.   Date : DateRecord;
  50.   Recon : Boolean;
  51.   Version : String[9];
  52.   Empty : Array[1..246] of Char;
  53. End;
  54.  
  55. {-------------------------------------------------------------------------}
  56.  
  57.